-
Notifications
You must be signed in to change notification settings - Fork 364
Replace PyICU with Rust icu_segmenter
crate
#18553
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
anoadragon453
merged 15 commits into
develop
from
anoa/codex/replace-pyicu-with-icu-rust-crate
Jul 3, 2025
Merged
Replace PyICU with Rust icu_segmenter
crate
#18553
anoadragon453
merged 15 commits into
develop
from
anoa/codex/replace-pyicu-with-icu-rust-crate
Jul 3, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ex/replace-pyicu-with-icu-rust-crate
…-pyicu-with-icu-rust-crate
sandhose
reviewed
Jul 2, 2025
synapse/synapse_rust/segmenter.pyi
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Co-authored-by: Quentin Gliech <[email protected]>
Looks like CI now needs #18596 to pass:
And this PR effectively bumps our MSRV to 1.82.0. |
sandhose
approved these changes
Jul 3, 2025
Co-authored-by: Quentin Gliech <[email protected]>
gentoo-bot
pushed a commit
to gentoo/gentoo
that referenced
this pull request
Jul 15, 2025
PyICU was replaced with with Rust icu_segmenter crate. See-also: element-hq/synapse#18553 Signed-off-by: Petr Vaněk <[email protected]>
OlegGirko
added a commit
to OlegGirko/synapse
that referenced
this pull request
Jul 21, 2025
…)" This reverts commit be4c95b. The icu_segmenter is not pckaged for Fedora and has many dependencies that either are not packaged, or have older versions than needed. So, it's easier to revert this change than package all of these crates.
anoadragon453
added a commit
that referenced
this pull request
Jul 31, 2025
Due to `icu_segmenter` requiring 1.82.0. Missed in #18553
3 tasks
OlegGirko
added a commit
to OlegGirko/synapse
that referenced
this pull request
Aug 2, 2025
…)" This reverts commit be4c95b. The icu_segmenter is not pckaged for Fedora and has many dependencies that either are not packaged, or have older versions than needed. So, it's easier to revert this change than package all of these crates.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes #18282.
Replaces the
PyICU
python wrapper around the C++icu
library with a native Rust solution; theicu_segmenter
crate, which is part of the broadericu
crate.This eliminates the need for downstream users to install the
libicu
package if they want to have improved user search.The model decided to use the default constructor for
WordSegmenter
, and I agree. Our "data" is the user's search query, which is always parsed on the fly and not stored. So it's OK if it changes between ICU releases.Note: This PR was mostly written by OpenAI Codex, before being reviewed by myself. Commits written by Codex are marked as those made by @anoadragon453-codex. Please use extra caution when reviewing them.
This PR updates the minimum supported rust version (MSRV) to 1.82.0.
Pull Request Checklist
EventStore
toEventWorkerStore
.".code blocks
.